home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / DCLAP 6d / dclap6d / network / ncsasock / s_param.h < prev    next >
C/C++ Source or Header  |  1996-07-05  |  535b  |  26 lines

  1. #include <s_types.h>
  2.  
  3. // #define is68k          // MPW C defines MC68000, mc68000, m68k, and
  4. // #define isMACINTOSH    // macintosh automatically.
  5.  
  6. #ifndef MPW3              // It should define MPW3, but it doesn't
  7. #define MPW3 1
  8. #endif
  9.  
  10. // The endian stuff shouldn't really be here.
  11. #ifndef BIG_ENDIAN
  12. # define BIG_ENDIAN 4321
  13. #endif
  14.  
  15. #ifndef LITTLE_ENDIAN
  16. # define LITTLE_ENDIAN 1234
  17. #endif
  18.  
  19. #ifndef BYTE_ORDER
  20. # define BYTE_ORDER BIG_ENDIAN
  21. #endif
  22.  
  23. #define MAXHOSTNAMELEN  256
  24. #define MAXPATHLEN      256
  25. #define NCARGS  0x100000  
  26.